Back in the Type category of the CSS Style Definition
dialog box, enter 14px in the Size text
box and #666666 in the Color text box.
Choose "lowercase" from the Case field. Move to the
Block category: Enter 0.5 ems for
Letter Spacing and leave Text Align set to "right." In
the Positioning category, change the Placement section's
Right field from 0 to 5 pixels. Click OK to update the
#script ID.
If you open your style sheet in a text editor (or
Dreamweaver MX) the #logo and #script styles should
appear with these properties: #logo{
position: absolute;
top: 30px;
left: 30px;
z-index: 50;
font-family: "Juice ITC", "Apple Chancery",
Impact, "Bradley Hand ITC", Skia, "Trebuchet MS", sans-serif;
font-size: 50px;
color: #333333;
letter-spacing: 0.5em;
}
#script{
position: absolute;
top: 12px;
right: 5px;
text-align: right;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
text-transform: lowercase;
color: #666666;
letter-spacing: 0.5em;
}
Preview your page in a browser to make sure your
changes appear correctly (either using File > Preview
in Browser or pressing F12). Lookin' better? Now let's
style the navigation. |